home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Zen & the Art of Resourc…The BMUG Guide to ResEdit
/
Zen and the Art of Resource Editing - The BMUG Guide to ResEdit (1995).iso
/
ResEdit 2.1.3
/
Examples
/
PExamples
/
BuildPicker
< prev
next >
Wrap
Text File
|
1994-07-15
|
743b
|
30 lines
#ResEdit PExample
#This is the script file BuildPicker which builds the Pascal ICON picker example
#
# Copyright Apple Computer, Inc. 1986-1990
# All rights reserved.
#
Open "{WorkSheet}"
set start `date -n`
echo Building the ResEdit Pascal picker example
# Set the directory to the PExamples folder
directory "{boot}"ResEdit:Examples:PExamples:
# Set the variable to indicate where ResEdit can be found.
# This variable is used by the make file to put the
# example picker into ResEdit.
set buildToName "{boot}ResEdit:ResEdit"
Export buildToName
make -f MakePicker > temp
temp
delete temp
beep
set end `date -n`
echo " " built in `Evaluate ({end} - {start}) DIV 60` "minutes " `Evaluate ({end} - {start}) MOD 60` "seconds"